EventPattern.Deconstruct(TSender?, TEventArgs) method¶
Defined in
Type: EventPatternSystem.Reactive
Assembly: System.Reactive.dll
Applies to
netstandard2.0
public void Deconstruct(out TSender? sender, out TEventArgs e)
Summary: Deconstructs the event pattern value into a sender and event data.
Parameters
| Name | Type | Description |
|---|---|---|
out sender | TSender? | The sender object that raised the event. |
out e | TEventArgs | The event data that was generated by the event. |